Advertisement
Guest User

Untitled

a guest
Jun 18th, 2020
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.72 KB | None | 0 0
  1. <style>
  2.     .parent_ava_div {
  3.         border-radius: 31%;
  4.         width: 200px;
  5.         height: 200px;
  6.         overflow: hidden;
  7.     }
  8.     .ava_div {
  9.         border-bottom-left-radius: 20% 45%;
  10.         border-bottom-right-radius: 20% 45%;
  11.         border-top-left-radius: 20% 45%;
  12.         border-top-right-radius: 20% 45%;
  13.         width: 100%;
  14.         height: 100%;
  15.         overflow: hidden;
  16.     }
  17.     .ava_img {
  18.         border-bottom-left-radius: 45% 20%;
  19.         border-bottom-right-radius: 45% 20%;
  20.         border-top-left-radius: 45% 20%;
  21.         border-top-right-radius: 45% 20%;
  22.         width: 100%;
  23.         height: 100%;
  24.     }
  25. </style>
  26. <div class = "parent_ava_div">
  27.     <div class = "ava_div">
  28.         <img class = "ava_img" src = https://sun9-43.userapi.com/G0DxIx5EGDd9d-lRvgGXlj2QT4wCAwi4gmAiOg/yrJqlVlp1hQ.jpg">
  29.     </div>
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement